{% extends 'base.html' %} {% block title %}Testing Centers — {{ site_settings.institute_name }}{% endblock %} {% block content %}

TSN Digital testing centers

Book an in-person certification exam at one of our centers.

{% for center in centers %}
{{ center.name }}
{{ center.city }}
{{ center.address }}
{% if center.phone %}
{{ center.phone }}
{% endif %} {% if center.email %}
{{ center.email }}
{% endif %} {% if center.map_url %} View on map {% endif %} {% if center.directions %}
{{ center.directions }}
{% endif %}
{% empty %}
No testing centers published yet.
{% endfor %}
{% endblock %}